home *** CD-ROM | disk | FTP | other *** search
- import java.awt.Event;
- import java.io.DataInputStream;
-
- public class bob11 extends bob {
- public boolean value;
-
- public bob11(boolean var1) {
- this.value = var1;
- }
-
- public bob11() {
- }
-
- // $FF: renamed from: rd (java.io.DataInputStream) void
- public void method_0(DataInputStream var1) {
- try {
- this.value = var1.readBoolean();
- } catch (Exception var3) {
- }
-
- }
-
- // $FF: renamed from: he (java.awt.Event) void
- public void method_1(Event var1) {
- boolean var2 = var1.arg instanceof bob11 ? ((bob11)var1.arg).value : false;
- switch (var1.id) {
- case 1:
- if (var2 != this.value) {
- ((bob)this).ce(this, 3);
- }
-
- this.value = var2;
- ((bob)this).ce(this, 2);
- if (this.value) {
- ((bob)this).ce(this, 5);
- } else {
- ((bob)this).ce(this, 6);
- }
-
- return;
- case 2:
- ((bob)this).ce(this, 1);
- if (this.value) {
- ((bob)this).ce(this, 5);
- } else {
- ((bob)this).ce(this, 6);
- }
-
- return;
- case 3:
- var2 = !this.value;
- break;
- case 4:
- var2 &= this.value;
- break;
- case 5:
- var2 |= this.value;
- break;
- case 6:
- var2 ^= this.value;
- break;
- default:
- return;
- }
-
- ((bob)this).ce(new bob11(var2), 4);
- if (var2) {
- ((bob)this).ce(new bob11(var2), 5);
- } else {
- ((bob)this).ce(new bob11(var2), 6);
- }
-
- }
- }
-